home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
Collection of Tools & Utilities
/
Collection of Tools and Utilities.iso
/
comm
/
byepc300.zip
/
MAKEFILE
< prev
next >
Wrap
Text File
|
1987-09-03
|
769b
|
27 lines
# ----------------------------------------------------------------------
#
# *** BYE-PC 'MAKE' file for use with MASM 4.00 ***
#
# MAKE file for using MASM with BYE-PC. To create BYExxx.COM type
# the following command at the dos prompt (assuming that MASM 4.0,
# MAKE, LINK, and EXE2BIN are in the current directory or path name):
#
# C>make bye {return}
#
# NOTE: For IBM PC Macro Assembler 2.00 or greater, remove all
# of the options from the macro 'cmp' ('cmp=') to make it null.
#
# ----------------------------------------------------------------------
#
cmp=/V/Z/B60
pgm=bye300
$(pgm).obj: $(pgm).asm
masm $(pgm) $(cmp);
$(pgm).com: $(pgm).obj
link $(pgm);
exe2bin $(pgm).exe $(pgm).com
del $(pgm).exe